#Week 1 _ Conditionals

import math

#1.
def triangleArea(s1, s2, s3):
    return 41

#2.
def triangleAreaByCoordinates(x1, y1, x2, y2, x3, y3):
    return 41

#3.
def lineIntersection(m1, b1, m2, b2):
    return 41

#4.
def nthFibonacciNumber(n):
    return 41

#-----------------------------------------------------------------------------------------
#1.
def pascalsTriangleValue(row, col):
    return 41

#2.
def isFactor(f, n):
    return 41

#3.
def isMultiple(m,n):
    return 41

#4.
def rectanglesOverlap(left1, top1, width1, height1, left2, top2, width2, height2):
    return 41

#5.
def alternatesEvenOdd(n):
    return 41

#6.
def isSmallTidy(n):
    return 41

#7.
def pascalsTriangleValue(row, col):
    return 41

#8.
def isSmall42ish(n):
    return 41

#9
def isFactor(f, n) :
    return
